47d8a55b4d74cbfa76cc6048006aa2be66398264,test/src/main/java/org/vertexium/test/GraphTestBase.java,GraphTestBase,testAddEdgeWithoutIndexing,#,4199
Before Change
@Test
public void testAddEdgeWithoutIndexing() {
if (isDefaultSearchIndex()) {
return;
}
Vertex v1 = graph.addVertex("v1", VISIBILITY_A, AUTHORIZATIONS_A);
Vertex v2 = graph.addVertex("v2", VISIBILITY_A, AUTHORIZATIONS_A);
After Change
@Test
public void testAddEdgeWithoutIndexing() {
assumeTrue("add edge without indexing not supported", !isDefaultSearchIndex());
Vertex v1 = graph.addVertex("v1", VISIBILITY_A, AUTHORIZATIONS_A);
Vertex v2 = graph.addVertex("v2", VISIBILITY_A, AUTHORIZATIONS_A);